home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / GraphicsWrap / Source / CmdDraw.m < prev    next >
Text File  |  1991-09-16  |  220b  |  18 lines

  1. #import "CmdDraw.h"
  2.  
  3. @implementation CmdDraw
  4. - initCmd:(int)x :(int)y
  5. {
  6.   [super init];
  7.   number1=x; number2=y;
  8.   command="draw";
  9.   return self;
  10. }
  11.  
  12. - doCmd
  13. {
  14.   [theBitmap cmdDraw:number1 :number2];
  15.   return self;
  16. }
  17. @end
  18.